home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / shaft.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  113 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10350);
  10.  script_bugtraq_id(2189);
  11.  script_version ("$Revision: 1.9 $");
  12.  script_cve_id("CAN-2000-0138");
  13.  
  14.  name["english"] = "Shaft Detect";
  15.  name["francais"] = "Detection de Shaft";
  16.  
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "
  20. The remote host appears to be running
  21. Shaft, which is a trojan that can be 
  22. used to control your system or make it 
  23. attack another network (this is 
  24. actually called a distributed denial
  25. of service attack tool)
  26.  
  27. It is very likely that this host
  28. has been compromised
  29.  
  30. Solution : Restore your system from backups,
  31.        contact CERT and your local
  32.        authorities
  33.  
  34. Risk factor : Critical";
  35.  
  36.  
  37.  
  38.  desc["francais"] = "
  39. Le systeme distant semble faire tourner
  40. Shaft qui peut etre utilisΘ pour prendre 
  41. le controle de celui-ci ou pour attaquer un 
  42. autre rΘseau (outil de dΘni de service 
  43. distribuΘ)
  44.  
  45. Il est trΦs probable que ce systeme a ΘtΘ
  46. compromis
  47.  
  48. Solution : reinstallez votre systΦme α partir
  49.        des sauvegardes, et contactez le CERT
  50.        et les autoritΘs locales
  51.        
  52. Facteur de risque : Critique";
  53.  
  54.  
  55.  script_description(english:desc["english"], francais:desc["francais"]);
  56.  
  57.  summary["english"] = "Detects the presence of Shaft";
  58.  summary["francais"] = "Detecte la prΘsence de Shaft";
  59.  
  60.  script_summary(english:summary["english"], francais:summary["francais"]);
  61.  
  62.  script_category(ACT_GATHER_INFO);
  63.  
  64.  
  65.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  66.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  67.  family["english"] = "Backdoors";
  68.  family["francais"] = "Backdoors";
  69.  script_family(english:family["english"], francais:family["francais"]);
  70.  
  71.  
  72.  exit(0);
  73. }
  74.  
  75. #
  76. # The script code starts here
  77. #
  78.  
  79. shaft_dstport = 18753;
  80. shaft_rctport = 20433;
  81. shaft_scmd = "alive";
  82. shaft_spass = "tijgu";
  83.  
  84.  
  85.  
  86. command = string(shaft_scmd, " ", shaft_spass, " hi 5 1918");
  87.  
  88.  
  89. ip  = forge_ip_packet(ip_hl:5, ip_v:4,   ip_off:0,
  90.                      ip_id:9, ip_tos:0, ip_p : IPPROTO_UDP,
  91.                      ip_len : 20, ip_src : this_host(),
  92.                      ip_ttl : 255);
  93.            
  94. length = 8 + strlen(command);             
  95. udpip = forge_udp_packet(ip : ip,
  96.                  uh_sport : 1024,    
  97.                          uh_dport : shaft_dstport,
  98.              uh_ulen : length,
  99.              data : command);
  100.              
  101. filter = string("udp and src host ", get_host_ip(), " and dst host ", this_host(), " and dst port ", shaft_rctport);         
  102. rep = send_packet(udpip, pcap_filter:filter, pcap_active:TRUE);        
  103.          
  104. if(!isnull(rep))
  105. {
  106.  dstport = get_udp_element(udp:rep, element:"uh_dport");
  107.  if(dstport == shaft_rctport)security_hole(port:shaft_dstport, protocol:"udp");
  108. }
  109.  
  110.  
  111.  
  112.  
  113.